home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Graphics / Utilities / POVRAY / POVRAY II / POV-Ray / POV-Ray.rsrc / TEXT_300_area_light.txt < prev    next >
Text File  |  1994-02-10  |  453b  |  13 lines

  1. // An extended area light (soft shadows)
  2. // WARNING: This can significantly slow down rendering times!
  3. light_source
  4. {
  5.   0*x // light's position (translated below)
  6.   color red 1.0  green 1.0  blue 1.0  // light's color
  7.   // <widthVector> <heightVector> nLightsWide mLightsHigh
  8.   area_light <8, 0, 0> <0, 8, 0> 4, 4
  9.   adaptive 0    // or 1 or 2 
  10.   jitter        // adds random softening of light
  11.   translate <40, 80, -40>   // <x y z> position of light
  12. }
  13.